home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / halo02 < prev    next >
Text File  |  1997-01-21  |  350b  |  23 lines

  1. //
  2. // POV-Ray(tm) 3.0 tutorial example scene.
  3. // Copyright 1996 by the POV-Ray Team
  4. //
  5.  
  6. #include "halo0.inc"
  7.  
  8. sphere { 0, 1
  9.   pigment { color rgbt <1, 1, 1, 1> }
  10.   halo {
  11.     emitting
  12.     spherical_mapping
  13.     linear
  14.     color_map {
  15.       [ 0 color rgbt <1, 0, 0,  1.0> ]
  16.       [ 1 color rgbt <1, 1, 0, -1.0> ]
  17.     } 
  18.     samples 10
  19.   }
  20.   hollow
  21. }
  22.  
  23.